home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 11 code / Async Sound Helper / Sound Helper Demo / Std.h < prev    next >
Encoding:
Text File  |  1995-04-14  |  1.0 KB  |  47 lines  |  [TEXT/MPS ]

  1. //=======================================================================================
  2. //
  3. // Std.h - standard Macintosh includes for SHDemo
  4. //
  5. // Written by Bryan K. Ressler (Beaker), 2/4/92
  6. //
  7. // Version 1.00, 2/4/92        Original version
  8. //         1.10, 4/11/92    Integrate final Sound Helper, clean up
  9. //
  10. //=======================================================================================
  11.  
  12. #if defined(MAKEDUMP) || defined(SLOWBUILD)
  13.  
  14.     #include <Errors.h>        // All the Macintosh includes we need (and then some)
  15.     #include <Memory.h>
  16.     #include <OSUtils.h>
  17.     #include <QuickDraw.h>
  18.     #include <Fonts.h>
  19.     #include <Windows.h>
  20.     #include <Packages.h>
  21.     #include <Desk.h>
  22.     #include <Printing.h>
  23.     #include <FixMath.h>
  24.     #include <Resources.h>
  25.     #include <StdLib.h>
  26.     #include <String.h>
  27.     #include <Sound.h>
  28.     #include <SoundInput.h>
  29.     #include <Strings.h>
  30.     #include <ToolUtils.h>
  31.     #include <Types.h>
  32.     #include <GestaltEqu.h>
  33.  
  34.     #include <stdarg.h>
  35.     #include <stdio.h>
  36.  
  37.     #if defined(MAKEDUMP)
  38.         #pragma dump "Std.precomp"
  39.     #endif
  40.  
  41. #else
  42.  
  43.     #pragma load "Std.precomp"
  44.  
  45. #endif
  46.  
  47.